home *** CD-ROM | disk | FTP | other *** search
/ Software Vault: The Gold Collection / Software Vault - The Gold Collection (American Databankers) (1993).ISO / cdr31 / uxarc.zip / UXARC.DOC < prev   
Text File  |  1993-05-07  |  2KB  |  42 lines

  1. UXARC is just a short little utility I wrote as a convenience
  2. to myself for extracting files from the various archive
  3. formats around.  The problem arose when downloading
  4. files from the ATT-PAC BBS/(415) 829-6062.  This board's
  5. AUNTIE BBS software allows the user to enter a filename
  6. without an extension, and the system will automatically
  7. perform any operations the user requests on that file if
  8. it exists as an .ARC, .ZIP, or .LZH file.  This,
  9. unfortunately, led to the problem of downloading files
  10. in an archive format with which I was unfamiliar.
  11.  
  12. This utility was then written merely to make it possible
  13. to treat archives in the same manner from DOS as they
  14. are in AUNTIE.  Most of the command-line options in
  15. PKUNPAK, PKUNZIP, and LHARC are similar, so it was easy
  16. to create a utility to unify all three.
  17.  
  18. What this program does is search the command-line for the
  19. first occurrance of an option which does not begin with
  20. either "-" or "/".  It assumes this is the archive file.
  21. If this filename has an extension, the program will
  22. use the correct archive extraction program based upon that
  23. extension.  If the filename does not have an extension,
  24. the program will search for the filename with the
  25. extensions ".ZIP", ".ARC", and ".LZH", in that order.  When
  26. it finds one, it will use the appropriate archiving
  27. program.
  28.  
  29. The main advantage of this program is that it unifies the
  30. command-line syntax of all three programs, making it un-
  31. necessary for the end user to be concerned with the format
  32. of the archive extraction command.  Extra features to unify
  33. the command syntaxes include the conversion of all hyphens at
  34. the beginning of command line arguments to slashes, since
  35. Phil Katz's .ARC programs do not support hyphens.  Also, if
  36. no command-line switches are specified on an LHARC file,
  37. this program adds an -X, which is the default for both of
  38. the other extraction programs.
  39.  
  40. This program requires that you have PKUNZIP, PKUNPAK, and
  41. LHARC in your path.
  42.